home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / flot1w / floatool.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  1.2 KB  |  41 lines

  1. VERSION 2.00
  2. Begin Form frmToolbar 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Tool Bar"
  6.    ClientHeight    =   3930
  7.    ClientLeft      =   6225
  8.    ClientTop       =   4080
  9.    ClientWidth     =   810
  10.    ControlBox      =   0   'False
  11.    Height          =   4335
  12.    Icon            =   FLOATOOL.FRX:0000
  13.    Left            =   6165
  14.    LinkTopic       =   "Form2"
  15.    MaxButton       =   0   'False
  16.    ScaleHeight     =   3930
  17.    ScaleWidth      =   810
  18.    Top             =   3735
  19.    Width           =   930
  20.    Begin CommandButton cmdExit 
  21.       BackColor       =   &H00C0C0C0&
  22.       Caption         =   "E&xit"
  23.       Height          =   315
  24.       Left            =   60
  25.       TabIndex        =   0
  26.       Top             =   1800
  27.       Width           =   675
  28.    End
  29. DefInt A-Z
  30. Declare Sub SetWindowWord Lib "user" (ByVal hWnd, ByVal ncmd, ByVal nval)
  31. Const SWW_hParent = -8
  32. Sub cmdExit_Click ()
  33. Unload frmToolbar
  34. End Sub
  35. Sub Form_Load ()
  36. SetWindowWord hWnd, SWW_hParent, form1.hWnd
  37. End Sub
  38. Sub Form_Unload (Cancel As Integer)
  39. SetWindowWord hWnd, SWW_hParent, 0
  40. End Sub
  41.